This command will return the width of the specified image
Syntax
Return Integer=IMAGE WIDTH(Image Number)
Parameters
Image Number
Integer
The image number
Returns
This value is an integer number such as 1.
Example Code
set display mode 800,600,32
for t=0 to 1000
ink rgb(rnd(255),rnd(255),rnd(255)),0
circle rnd(800),rnd(600),rnd(200)
next t
ink rgb(255,255,255),0
get image 1,0,0,32,32,1
do
cls 0
print "Image Width ",image width(1)
paste image 1,mousex(),mousey(),1
loop
end